home *** CD-ROM | disk | FTP | other *** search
/ Consumer Reports: Cars 1996 / Consumer Reports: Cars 1996.iso / vfw / setup.mst < prev    next >
Text File  |  1995-09-12  |  11KB  |  318 lines

  1. '**************************************************************************
  2. '*                  VfW 1.1 Runtime Setup
  3. '**************************************************************************
  4. '$INCLUDE 'setupapi.inc'
  5. '$INCLUDE 'mscpydis.inc'    ''System
  6. '$INCLUDE 'msdetect.inc'    ''Detects Avalilable Disk Space
  7.  
  8. ''Dialog ID's
  9. CONST WELCOME       = 100
  10. CONST ASKQUIT       = 200
  11. CONST EXITFAILURE   = 400
  12. CONST EXITQUIT      = 600
  13. CONST EXITSUCCESS   = 700
  14. CONST APPHELP       = 900
  15. CONST CHECK         = 2500
  16. CONST SMALLWIN      = 2200
  17. CONST RESTART       = 2600
  18. CONST RESTARTII     = 2700
  19.  
  20. ''Bitmap ID
  21. CONST LOGO = 1
  22.  
  23. GLOBAL SizeReq&  '' Total Disk Size required for installation
  24.  
  25. ''File Types
  26. GLOBAL WinDir$
  27. GLOBAL WinSysDir$
  28. GLOBAL WinSys32Dir$
  29. GLOBAL WINDRIVE$    ''Windows Drive Letter.
  30. GLOBAL CHECKSTATES$
  31. GLOBAL MinorVer%
  32. GLOBAL OnNT$
  33.  
  34. DECLARE SUB Install
  35. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  36. DECLARE FUNCTION OnWindowsNT LIB "INIUPD.DLL" AS INTEGER
  37. DECLARE FUNCTION VflatdPresent LIB "iniupd.DLL" AS INTEGER
  38. DECLARE SUB Reboot LIB "iniupd.dll"
  39. DECLARE fUNCTION ExitWindowsExec  LIB "User" (Exec$, Param$) AS INTEGER
  40.  
  41. INIT:
  42.     'GOTO WELCOME      
  43.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  44.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  45.  
  46.     WIN32ENABLED% = 0
  47.     MajorVer% = GetWindowsMajorVersion()
  48.     MinorVer% = GetWindowsMinorVersion()
  49.     Processor% = GetProcessorType()
  50.     WinDir$ = GetWindowsDir()
  51.     DEST$ = GetWindowsDir()
  52.     WinSysDir$ = GetWindowsSysDir()
  53.     WinSys32Dir$ = WinDir$ + "system32"
  54.  
  55.     IF MajorVer% < 3 OR (MajorVer% = 3 AND MinorVer% < 10) THEN
  56.     i% = DoMsgBox("Microsoft Windows version 3.10 or greater is required for this software.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  57.     END
  58.     END IF
  59.  
  60.     'Prevents installation on 286
  61.     IF Processor% < 3 THEN
  62.     i% = DoMsgBox("Video for Windows requires a 386 or greater processor or emulator.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  63.     END
  64.     END IF
  65.  
  66.     ' Use Wowexec to determine version of NT.  3.1 did not stamp wowexec and wow returns 3.1 as version
  67.     IF OnWindowsNT() THEN
  68.       OnNT$ = "TRUE"
  69.       WowVersion$ = GetVersionOfFile(WinSys32Dir$ + "\wowexec.exe")
  70.       IF WowVersion$ = "" THEN
  71.          i% = DoMsgBox("Video for Windows does not run on Windows NT 3.1.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  72.          END
  73.       END IF
  74.     END IF
  75.  
  76.     SetBitmap CUIDLL$, LOGO
  77.     SetTitle "Video for Windows 1.1 Runtime"
  78.  
  79.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  80.     IF szInf$ = "" THEN
  81.        szInf$ = GetSymbolValue("STF_CWDDIR") + "SETUP.INF"
  82.     END IF
  83.     ReadInfFile szInf$
  84.  
  85.     WINDRIVE$ = MID$(GetWindowsDir, 1, 1)
  86.  
  87. WELCOME:
  88.     sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
  89.     IF sz$ = "CONTINUE" THEN
  90.        UIPop 1
  91.      ELSE
  92.     GOSUB ASKQUIT
  93.     GOTO WELCOME
  94.     END IF
  95.  
  96. ''Prepare Copy list and check size
  97.  
  98.     ClearCopyList
  99.     SrcDir$ = GetSymbolValue("STF_SRCDIR")
  100.  
  101. '' Remove DCISVGA file
  102.     AddSectionFilesToCopyList "remove", SrcDir$, WinSysDir$
  103.  
  104. ''  Runtime files (on Windows disk)
  105. ''  Do not install OLE or MPlayer if on next release of NT or Windows
  106.  
  107.     IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN            'These files not necessary on Windows NT
  108.     AddSectionFilesToCopyList "MPlayer", SrcDir$, WinDir$
  109.     AddSectionFilesToCopyList "OLE2", SrcDir$, WinSysDir$
  110.     END IF
  111.     AddSectionFilesToCopyList "VfW Runtime", SrcDir$, WinSysDir$
  112.     AddSectionFilesToCopyList "ACM Drivers", SrcDir$, WinSysDir$
  113.     AddSectionFilesToCopyList "AVICodecs", SrcDir$, WinSysDir$
  114.     IF OnNT$ = "TRUE" THEN
  115.     AddSectionFilesToCopyList "NT MSVideo", SrcDir$, WinSys32Dir$
  116.     ENDIF
  117. ''*************************************************************************************************************************
  118. ''*************************************************************************************************************************
  119. ''To add a DCI provider, please un-comment the AddSectionFilesToCopyList,
  120. ''and add a "DCI Provider" section with to the SETUP.INF file.
  121. ''
  122. ''    AddSectionFilesToCopyList "DCI Provider", SrcDir$, WinSysDir$
  123. ''*************************************************************************************************************************
  124. ''*************************************************************************************************************************
  125.  
  126. ''  Check windrive diskspace
  127.     SizeReq& = GetCopyListCost ("","", "")
  128.     IF SizeReq& <> 0 THEN
  129.     GOSUB SMALLWIN
  130.     END
  131.     END IF
  132.  
  133. Install
  134.  
  135. '' Restart Windows: if it has to updates ACM from DOS, it restarts Windows automatically
  136. '' else, it gives the user the choice
  137.     RESTRT% = RestartListEmpty ()
  138.     Exe$ = DEST$ + "\_msrstrt.exe"
  139.     Batch$ = DEST$ + "\_mssetup.bat"
  140.     empty$ = ""
  141. RESTART:
  142.     
  143.     IF RESTRT% = 0 THEN
  144.        
  145.        'This added goto gives CMC reboot control if restrt% = 0
  146.        
  147.        GOTO MODDIALOG
  148.        sz$ = UIStartDlg(CUIDLL$, RESTART, "FInfo0DlgProc", 0, "")
  149.        
  150.        IF sz$ = "REACTIVATE" THEN
  151.               GOTO RESTART
  152.        ENDIF
  153.        I% = ExitExecRestart ()
  154.        RemoveFile Exe$, cmoForce
  155.        RemoveFile Batch$, cmoForce
  156.        END
  157.     ELSE
  158.        
  159.        'calls modified dialog
  160. MODDIALOG:       
  161.       sz$ = UIStartDlg(CUIDLL$, RESTARTII, "FQuitDlgProc", 0, "")
  162.       
  163.       'should never do first condition...button is gone
  164.       
  165.       IF sz$ = "CONTINUE" THEN
  166.               I% = ExitWindowsExec (Exe$, empty$)
  167.               IF I% = 0 THEN
  168.                  GOTO RESTART
  169.               ELSE
  170.                END
  171.              ENDIF
  172.         ELSEIF sz$ = "EXIT" THEN
  173.               
  174.               'normal path...ok(exit), space, 
  175.               
  176.               UIPopAll
  177.               END
  178.          ELSEIF sz$ = "REACTIVATE" THEN
  179.               GOTO RESTART
  180.       ELSE
  181.               
  182.               'hit escape, altF4... pops and goes to quitl1
  183.               
  184.               UIPop 1
  185.       END IF
  186.     END IF
  187.  
  188.  
  189. QUIT:
  190.     ON ERROR GOTO ERRQUIT
  191.  
  192.     IF ERR = 0 THEN
  193.     dlg% = EXITSUCCESS
  194.     ELSEIF ERR = STFQUIT THEN
  195.     dlg% = EXITQUIT
  196.     ELSE
  197.     dlg% = EXITFAILURE
  198.     END IF
  199. QUITL1:
  200.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  201.     IF sz$ = "REACTIVATE" THEN
  202.     GOTO QUITL1
  203.     END IF
  204.     UIPop 1
  205.     END
  206.  
  207. ERRQUIT:
  208.     i% = DoMsgBox("An installation problem occured, call the product support service", "Setup Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  209.     END
  210.  
  211.  
  212. ASKQUIT:
  213.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  214.  
  215.     IF sz$ = "EXIT" THEN
  216.     UIPopAll
  217. ''        ERROR STFQUIT
  218.     END
  219.     ELSEIF sz$ = "REACTIVATE" THEN
  220.     GOTO ASKQUIT
  221.     ELSE
  222.     UIPop 1
  223.     END IF
  224.     RETURN
  225.  
  226. SMALLWIN:
  227.     sz$ = UIStartDlg(CUIDLL$, SMALLWIN, "FInfo0DlgProc", 0, "")
  228.     IF sz$ = "REACTIVATE" THEN
  229.     GOTO SMALLWIN
  230.     END IF
  231.     UIPop 1
  232.     RETURN
  233.  
  234. '**
  235. '** Purpose:
  236. '**     Performs all installation operations.
  237. '** Arguments:
  238. '**     none.
  239. '** Returns:
  240. '**     none.
  241. '*************************************************************************
  242. SUB Install STATIC
  243.  
  244.     SetRestartDir WinDir$
  245.     CopyFilesInCopyList
  246.  
  247. ''Updating WIN.INI and SYSTEM.INI
  248. ''Only update SYSTEM.INI  on NT or next version of Windows for other codecs
  249.  
  250. IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN
  251.     IF VflatdPresent() = 0 THEN
  252.        CreateSysIniKeyValue WinDir$ + "system.ini", "386Enh", "device", "dva.386", cmoOverwrite
  253.     END IF
  254. END IF
  255.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.CVID", "iccvid.drv", cmoOverwrite
  256.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MSVC", "msvidc.drv", cmoOverwrite
  257.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV32", "ir32.dll", cmoOverwrite
  258.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV31", "IR32.dll", cmoOverwrite
  259.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MRLE", "MSRLE.drv", cmoOverwrite
  260.     I% = DoesIniKeyExist ("system.ini", "Drivers", "VIDC.RT21")
  261.     IF I% = 0  THEN
  262.        CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.RT21", "ir21_r.dll", cmo